home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 May / Disc 2 / PCU0503CD2.iso / Crystal / Samples / CPP / 32bit / Mycall / CURSORBX.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-18  |  866 b   |  46 lines

  1. // CursorBox.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CCursorBox window
  6. #if !defined(_CURSORBOX_)
  7. #define _CURSORBOX_
  8.  
  9. class CCursorBox : public CComboBox
  10. {
  11. // Construction
  12. public:
  13.     void ClearVars();
  14.     short GetPETC();
  15.     void SetItem(const short cursorID);
  16.     
  17.     CCursorBox();
  18.  
  19. // Attributes
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CCursorBox)
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CCursorBox();
  33.  
  34.     // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CCursorBox)
  37.         // NOTE - the ClassWizard will add and remove member functions here.
  38.     //}}AFX_MSG
  39.  
  40.     DECLARE_MESSAGE_MAP()
  41. private:
  42.  
  43. };
  44. #endif
  45. /////////////////////////////////////////////////////////////////////////////
  46.